Fix many misspellings
Use codespell (https://github.com/codespell-project/codespell) in order to find many common misspellings that are present in English texts. Signed-off-by: Nicolas Iooss <nicolas.iooss@m4x.org>
This commit is contained in:
parent
e17e489ee3
commit
b550c0e202
208 changed files with 712 additions and 712 deletions
|
@ -43,7 +43,7 @@ patches, please follow these guidelines:
|
|||
- Must apply against HEAD of the master branch
|
||||
- Separate large patches into logical patches
|
||||
- Patch descriptions must end with your "Signed-off-by" line. This means your
|
||||
code meets the Developer's certificate of origin, see bellow.
|
||||
code meets the Developer's certificate of origin, see below.
|
||||
|
||||
When adding new, large features or tools it is best to discuss the
|
||||
design on the mailing list prior to submitting the patch.
|
||||
|
|
|
@ -2022,7 +2022,7 @@ int avrule_ioctl_ranges(struct av_ioctl_range_list **rangelist)
|
|||
return -1;
|
||||
if (avrule_merge_ioctls(&rangehead))
|
||||
return -1;
|
||||
/* flip ranges if these are ommited*/
|
||||
/* flip ranges if these are omitted */
|
||||
if (omit) {
|
||||
if (avrule_omit_ioctls(&rangehead))
|
||||
return -1;
|
||||
|
@ -2189,7 +2189,7 @@ int avrule_xperms_used(av_extended_perms_t *xperms)
|
|||
/*
|
||||
* using definitions found in kernel document ioctl-number.txt
|
||||
* The kernel components of an ioctl command are:
|
||||
* dir, size, driver, and fucntion. Only the driver and function fields
|
||||
* dir, size, driver, and function. Only the driver and function fields
|
||||
* are considered here
|
||||
*/
|
||||
#define IOC_DRIV(x) (x >> 8)
|
||||
|
@ -3377,9 +3377,9 @@ int define_filename_trans(void)
|
|||
goto bad;
|
||||
}
|
||||
|
||||
/* We expand the class set into seperate rules. We expand the types
|
||||
/* We expand the class set into separate rules. We expand the types
|
||||
* just to make sure there are not duplicates. They will get turned
|
||||
* into seperate rules later */
|
||||
* into separate rules later */
|
||||
if (type_set_expand(&stypes, &e_stypes, policydbp, 1))
|
||||
goto bad;
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ class selinux_server(slip.dbus.service.Object):
|
|||
|
||||
#
|
||||
# The semanage method runs a transaction on a series of semanage commands,
|
||||
# these commnds can take the output of customized
|
||||
# these commands can take the output of customized
|
||||
#
|
||||
@slip.dbus.polkit.require_auth("org.selinux.semanage")
|
||||
@dbus.service.method("org.selinux", in_signature='s')
|
||||
|
|
|
@ -901,7 +901,7 @@
|
|||
<object class="GtkTreeView" id="existing_user_treeview">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="tooltip-text" translatable="yes">Select the user roles that will transiton to the %s domain.</property>
|
||||
<property name="tooltip-text" translatable="yes">Select the user roles that will transition to the %s domain.</property>
|
||||
<property name="headers_visible">False</property>
|
||||
</object>
|
||||
</child>
|
||||
|
@ -1004,7 +1004,7 @@ role tab</property>
|
|||
<object class="GtkTreeView" id="user_transition_treeview">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="tooltip-text" translatable="yes">Select the user roles that will transiton to this applications domains.</property>
|
||||
<property name="tooltip-text" translatable="yes">Select the user roles that will transition to this applications domains.</property>
|
||||
<property name="headers_visible">False</property>
|
||||
</object>
|
||||
</child>
|
||||
|
|
|
@ -769,7 +769,7 @@ class childWindow:
|
|||
self.syslog_checkbutton.set_active(policy.use_syslog)
|
||||
|
||||
def stand_alone(self):
|
||||
desktopName = _("Configue SELinux")
|
||||
desktopName = _("Configure SELinux")
|
||||
|
||||
self.setupScreen()
|
||||
self.mainWindow.connect("destroy", self.quit)
|
||||
|
|
|
@ -181,7 +181,7 @@ class childWindow:
|
|||
self.view.get_selection().select_path((0,))
|
||||
|
||||
def stand_alone(self):
|
||||
desktopName = _("Configue SELinux")
|
||||
desktopName = _("Configure SELinux")
|
||||
|
||||
self.setupScreen()
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ extern "C" {
|
|||
/* Given a list of authorized security contexts for the user,
|
||||
query the user to select one and set *newcon to refer to it.
|
||||
Caller must free via freecon.
|
||||
Returns 0 on sucess or -1 otherwise. */
|
||||
Returns 0 on success or -1 otherwise. */
|
||||
extern int query_user_context(char ** list,
|
||||
char ** newcon);
|
||||
|
||||
|
|
|
@ -258,7 +258,7 @@ extern int security_compute_user_raw(const char * scon,
|
|||
/* Validate a transition. This determines whether a transition from scon to newcon
|
||||
using tcon as the target for object class tclass is valid in the loaded policy.
|
||||
This checks against the mlsvalidatetrans and validatetrans constraints in the loaded policy.
|
||||
Returns 0 if allowed and -1 if an error occured with errno set */
|
||||
Returns 0 if allowed and -1 if an error occurred with errno set */
|
||||
extern int security_validatetrans(const char *scon,
|
||||
const char *tcon,
|
||||
security_class_t tclass,
|
||||
|
|
|
@ -108,7 +108,7 @@ source context. It is mainly used by
|
|||
is used to determine if a transition from scon to newcon using tcon as the object
|
||||
is valid for object class tclass. This checks against the mlsvalidatetrans and
|
||||
validatetrans constraints in the loaded policy. Returns 0 if allowed, and -1
|
||||
if an error occured with errno set.
|
||||
if an error occurred with errno set.
|
||||
|
||||
.BR security_get_initial_context ()
|
||||
is used to get the context of a kernel initial security identifier specified by
|
||||
|
|
|
@ -28,7 +28,7 @@ If this is a directory and the
|
|||
.B SELINUX_RESTORECON_RECURSE
|
||||
has been set (for descending through directories), then
|
||||
.BR selinux_restorecon ()
|
||||
will write an SHA1 digest of specfile entries caculated by
|
||||
will write an SHA1 digest of specfile entries calculated by
|
||||
.BR selabel_get_digests_all_partial_matches (3)
|
||||
to an extended attribute of
|
||||
.IR security.sehash
|
||||
|
@ -196,7 +196,7 @@ To improve performance when relabeling file systems recursively (e.g. the
|
|||
.B SELINUX_RESTORECON_RECURSE
|
||||
flag is set)
|
||||
.BR selinux_restorecon ()
|
||||
will write a caculated SHA1 digest of the specfile entries returned by
|
||||
will write a calculated SHA1 digest of the specfile entries returned by
|
||||
.BR selabel_get_digests_all_partial_matches (3)
|
||||
to an extended attribute named
|
||||
.IR security.sehash
|
||||
|
|
|
@ -247,7 +247,7 @@ end_arch_check:
|
|||
uint32_t stem_len;
|
||||
int newid;
|
||||
|
||||
/* the length does not inlude the nul */
|
||||
/* the length does not include the nul */
|
||||
rc = next_entry(&stem_len, mmap_area, sizeof(uint32_t));
|
||||
if (rc < 0 || !stem_len) {
|
||||
rc = -1;
|
||||
|
|
|
@ -45,7 +45,7 @@ struct selabel_sub {
|
|||
/* A file security context specification. */
|
||||
struct spec {
|
||||
struct selabel_lookup_rec lr; /* holds contexts for lookup result */
|
||||
char *regex_str; /* regular expession string for diagnostics */
|
||||
char *regex_str; /* regular expression string for diagnostics */
|
||||
char *type_str; /* type string for diagnostic messages */
|
||||
struct regex_data * regex; /* backend dependent regular expression data */
|
||||
bool regex_compiled; /* bool to indicate if the regex is compiled */
|
||||
|
|
|
@ -159,8 +159,8 @@ int regex_cmp(struct regex_data *regex1, struct regex_data *regex2) hidden;
|
|||
* the buffer.
|
||||
*
|
||||
* @arg error_data Error data as returned by regex_prepare_data.
|
||||
* @arg buffer String buffer to hold the formated error string.
|
||||
* @arg buf_size Total size of the given bufer in bytes.
|
||||
* @arg buffer String buffer to hold the formatted error string.
|
||||
* @arg buf_size Total size of the given buffer in bytes.
|
||||
*/
|
||||
void regex_format_error(struct regex_error_data const *error_data, char *buffer,
|
||||
size_t buf_size) hidden;
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
*/
|
||||
struct selinux_status_t
|
||||
{
|
||||
uint32_t version; /* version number of thie structure */
|
||||
uint32_t version; /* version number of this structure */
|
||||
uint32_t sequence; /* sequence number of seqlock logic */
|
||||
uint32_t enforcing; /* current setting of enforcing mode */
|
||||
uint32_t policyload; /* times of policy reloaded */
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
// Modified to:
|
||||
// - stop symbols being exported for libselinux shared library - October 2015
|
||||
// Richard Haines <richard_c_haines@btinternet.com>
|
||||
// - Not cast the workspace from a byte array to a CHAR64LONG16 due to allignment isses.
|
||||
// - Not cast the workspace from a byte array to a CHAR64LONG16 due to alignment isses.
|
||||
// Fixes:
|
||||
// sha1.c:73:33: error: cast from 'uint8_t *' (aka 'unsigned char *') to 'CHAR64LONG16 *' increases required alignment from 1 to 4 [-Werror,-Wcast-align]
|
||||
// CHAR64LONG16* block = (CHAR64LONG16*) workspace;
|
||||
|
|
|
@ -93,7 +93,7 @@ static struct discover_class_node * discover_class(const char *s)
|
|||
if (sscanf(buf, "%hu", &node->value) != 1)
|
||||
goto err3;
|
||||
|
||||
/* load up permission indicies */
|
||||
/* load up permission indices */
|
||||
snprintf(path, sizeof path, "%s/class/%s/perms",selinux_mnt,s);
|
||||
dir = opendir(path);
|
||||
if (dir == NULL)
|
||||
|
|
|
@ -88,7 +88,7 @@ out:
|
|||
* u32 - spec has meta characters
|
||||
* u32 - The specs prefix_len if >= SELINUX_COMPILED_FCONTEXT_PREFIX_LEN
|
||||
* u32 - data length of the pcre regex
|
||||
* char - a bufer holding the raw pcre regex info
|
||||
* char - a buffer holding the raw pcre regex info
|
||||
* u32 - data length of the pcre regex study daya
|
||||
* char - a buffer holding the raw pcre regex study data
|
||||
*/
|
||||
|
|
|
@ -264,7 +264,7 @@ int semanage_module_install_info(semanage_handle_t *sh,
|
|||
*
|
||||
* Returns:
|
||||
* 0 success
|
||||
* -1 failure, out of memeory
|
||||
* -1 failure, out of memory
|
||||
* -2 failure, @module not found or couldn't be removed
|
||||
*/
|
||||
int semanage_module_remove_key(semanage_handle_t *sh,
|
||||
|
|
|
@ -21,7 +21,7 @@ hidden_proto(semanage_bool_clone)
|
|||
hidden_proto(semanage_bool_set_name)
|
||||
hidden_proto(semanage_bool_set_value)
|
||||
|
||||
/* BOOL RECORD: metod table */
|
||||
/* BOOL RECORD: method table */
|
||||
extern record_table_t SEMANAGE_BOOL_RTABLE;
|
||||
|
||||
extern int bool_file_dbase_init(semanage_handle_t * handle,
|
||||
|
|
|
@ -39,7 +39,7 @@ typedef struct dbase_policydb dbase_t;
|
|||
record_policydb_table_t SEMANAGE_BOOL_POLICYDB_RTABLE = {
|
||||
.add = NULL,
|
||||
.modify = NULL,
|
||||
/* FIXME: these casts depend on stucts in libsepol matching structs
|
||||
/* FIXME: these casts depend on structs in libsepol matching structs
|
||||
* in libsemanage. This is incredibly fragile - the casting gets
|
||||
* rid of warnings, but is not type safe.
|
||||
*/
|
||||
|
|
|
@ -49,7 +49,7 @@ typedef struct record_table {
|
|||
int (*clone) (struct semanage_handle * handle,
|
||||
const record_t * rec, record_t ** new_rec);
|
||||
|
||||
/* Deallocate record resources. Must sucessfully handle NULL. */
|
||||
/* Deallocate record resources. Must successfully handle NULL. */
|
||||
void (*free) (record_t * rec);
|
||||
|
||||
} record_table_t;
|
||||
|
|
|
@ -26,7 +26,7 @@ hidden_proto(semanage_fcontext_key_create)
|
|||
hidden_proto(semanage_fcontext_free)
|
||||
hidden_proto(semanage_fcontext_iterate_local)
|
||||
|
||||
/* FCONTEXT RECORD: metod table */
|
||||
/* FCONTEXT RECORD: method table */
|
||||
extern record_table_t SEMANAGE_FCONTEXT_RTABLE;
|
||||
|
||||
extern int fcontext_file_dbase_init(semanage_handle_t * handle,
|
||||
|
|
|
@ -279,7 +279,7 @@ void semanage_select_store(semanage_handle_t * sh, char *storename,
|
|||
assert(sh != NULL);
|
||||
|
||||
/* This just sets the storename to what the user requests, no
|
||||
verification of existance will be done until connect */
|
||||
verification of existence will be done until connect */
|
||||
free(sh->conf->store_path);
|
||||
sh->conf->store_path = strdup(storename);
|
||||
assert(sh->conf->store_path); /* no way to return failure */
|
||||
|
|
|
@ -22,7 +22,7 @@ hidden_proto(semanage_iface_create)
|
|||
hidden_proto(semanage_iface_set_msgcon)
|
||||
hidden_proto(semanage_iface_set_name)
|
||||
|
||||
/* IFACE RECORD: metod table */
|
||||
/* IFACE RECORD: method table */
|
||||
extern record_table_t SEMANAGE_IFACE_RTABLE;
|
||||
|
||||
extern int iface_policydb_dbase_init(semanage_handle_t * handle,
|
||||
|
|
|
@ -849,7 +849,7 @@ int semanage_module_set_enabled(semanage_handle_t *sh,
|
|||
|
||||
hidden_def(semanage_module_set_enabled)
|
||||
|
||||
/* This function exists only for ABI compatability. It has been deprecated and
|
||||
/* This function exists only for ABI compatibility. It has been deprecated and
|
||||
* should not be used. Instead, use semanage_module_set_enabled() */
|
||||
int semanage_module_enable(semanage_handle_t *sh, char *module_name)
|
||||
{
|
||||
|
@ -877,7 +877,7 @@ exit:
|
|||
return rc;
|
||||
}
|
||||
|
||||
/* This function exists only for ABI compatability. It has been deprecated and
|
||||
/* This function exists only for ABI compatibility. It has been deprecated and
|
||||
* should not be used. Instead, use semanage_module_set_enabled() */
|
||||
int semanage_module_disable(semanage_handle_t *sh, char *module_name)
|
||||
{
|
||||
|
|
|
@ -31,7 +31,7 @@ struct semanage_handle;
|
|||
struct semanage_policy_table {
|
||||
|
||||
/* Returns the current policy serial/commit number
|
||||
* A negative number is returned in case of failre */
|
||||
* A negative number is returned in case of failure */
|
||||
int (*get_serial) (struct semanage_handle *);
|
||||
|
||||
/* Destroy a connection */
|
||||
|
|
|
@ -105,7 +105,7 @@
|
|||
%apply int *OUTPUT { uint16_t * };
|
||||
|
||||
%include <cstring.i>
|
||||
/* This is needed to properly mmaped binary data in SWIG */
|
||||
/* This is needed to properly mmap binary data in SWIG */
|
||||
%cstring_output_allocate_size(void **mapped_data, size_t *data_len, munmap(*$1, *$2));
|
||||
|
||||
%typemap(in, numinputs=0) char **(char *temp=NULL) {
|
||||
|
|
|
@ -28,7 +28,7 @@ hidden_proto(semanage_user_add_role)
|
|||
hidden_proto(semanage_user_exists)
|
||||
hidden_proto(semanage_user_query)
|
||||
|
||||
/* USER record: metod table */
|
||||
/* USER record: method table */
|
||||
extern record_table_t SEMANAGE_USER_RTABLE;
|
||||
|
||||
/* USER BASE record: method table */
|
||||
|
|
|
@ -244,7 +244,7 @@ char *semanage_str_replace(const char *search, const char *replace,
|
|||
if (slen == 0)
|
||||
return NULL;
|
||||
|
||||
/* Count the occurences of search in src and compute the new size */
|
||||
/* Count the occurrences of search in src and compute the new size */
|
||||
for (p = strstr(src, search); p != NULL; p = strstr(p + slen, search)) {
|
||||
count++;
|
||||
if (lim && count >= lim)
|
||||
|
|
|
@ -69,16 +69,16 @@ int semanage_is_prefix(const char *str, const char *val) WARN_UNUSED;
|
|||
|
||||
/**
|
||||
* @param str the string to semanage_split
|
||||
* @return malloc'd string after the first run of charachters that aren't whitespace
|
||||
* @return malloc'd string after the first run of characters that aren't whitespace
|
||||
*/
|
||||
char *semanage_split_on_space(const char *str) WARN_UNUSED;
|
||||
|
||||
/**
|
||||
* @param str the string to semanage_split
|
||||
* @param delim the string delimiter. NOT a set of charachters that can be
|
||||
* @param delim the string delimiter. NOT a set of characters that can be
|
||||
* a delimiter.
|
||||
* if *delim == '\0' behaves as semanage_splitOnSpace()
|
||||
* @return a ptr to the first charachter past the delimiter.
|
||||
* @return a ptr to the first character past the delimiter.
|
||||
* if delim doesn't appear in the string, returns a ptr to the
|
||||
* trailing null in the string
|
||||
*/
|
||||
|
@ -102,15 +102,15 @@ int semanage_cmp_plist_t(const semanage_list_t ** x,
|
|||
const semanage_list_t ** y);
|
||||
/**
|
||||
* @param data a target string
|
||||
* @param what a charachter
|
||||
* @param what a character
|
||||
* @returns the number of times the char appears in the string
|
||||
*/
|
||||
int semanage_str_count(const char *data, char what);
|
||||
/**
|
||||
* @param - a string
|
||||
* @param the charachter to trim to
|
||||
* @param the character to trim to
|
||||
* @return - mangles the string, converting the first
|
||||
* occurrance of the charachter to a '\0' from
|
||||
* occurrence of the character to a '\0' from
|
||||
* the end of the string.
|
||||
*/
|
||||
void semanage_rtrim(char *str, char trim_to);
|
||||
|
@ -119,7 +119,7 @@ void semanage_rtrim(char *str, char trim_to);
|
|||
* @param value being searched for
|
||||
* @param replacement value that replaces found search values
|
||||
* @param string being searched and replaced on
|
||||
* @param maximum number of value occurences (zero for unlimited)
|
||||
* @param maximum number of value occurrences (zero for unlimited)
|
||||
* @return newly-allocated string with the replaced values
|
||||
*/
|
||||
char *semanage_str_replace(const char *search, const char *replace,
|
||||
|
|
|
@ -528,7 +528,7 @@ void test_bool_query(void)
|
|||
helper_bool_query(SH_TRANS, BOOL_NONEXISTENT, -1);
|
||||
}
|
||||
|
||||
/* Functon bool_exists */
|
||||
/* Function bool_exists */
|
||||
void helper_bool_exists(level_t level, const char *bool_str, int exp_resp)
|
||||
{
|
||||
semanage_bool_key_t *key;
|
||||
|
@ -884,7 +884,7 @@ void test_bool_iterate_local(void)
|
|||
cleanup_handle(SH_TRANS);
|
||||
}
|
||||
|
||||
/* Functtion bool_list_local */
|
||||
/* Function bool_list_local */
|
||||
void test_bool_list_local(void)
|
||||
{
|
||||
semanage_bool_t **records;
|
||||
|
|
|
@ -1608,7 +1608,7 @@ int __cil_permx_bitmap_to_sepol_xperms_list(ebitmap_t *xperms, struct cil_list *
|
|||
continue;
|
||||
}
|
||||
|
||||
// if we got here, i is the end of this range (either becuase the func
|
||||
// if we got here, i is the end of this range (either because the func
|
||||
// is 0xff or the next bit isn't set). The next time around we are
|
||||
// going to need a start a new range
|
||||
high = i;
|
||||
|
@ -1665,7 +1665,7 @@ int __cil_avrulex_ioctl_to_policydb(hashtab_key_t k, hashtab_datum_t datum, void
|
|||
|
||||
sepol_obj = pdb->class_val_to_struct[avtab_key->target_class - 1];
|
||||
|
||||
// setting the data for an extended avtab isn't really neccessary because
|
||||
// setting the data for an extended avtab isn't really necessary because
|
||||
// it is ignored by the kernel. However, neverallow checking requires that
|
||||
// the data value be set, so set it for that to work.
|
||||
rc = __perm_str_to_datum(CIL_KEY_IOCTL, sepol_obj, &data);
|
||||
|
@ -4152,7 +4152,7 @@ int __cil_policydb_init(policydb_t *pdb, const struct cil_db *db, struct cil_cla
|
|||
int rc = SEPOL_ERR;
|
||||
|
||||
// these flags should get set in __cil_policydb_create. However, for
|
||||
// backwards compatability, it is possible that __cil_policydb_create is
|
||||
// backwards compatibility, it is possible that __cil_policydb_create is
|
||||
// never called. So, they must also be set here.
|
||||
pdb->handle_unknown = db->handle_unknown;
|
||||
pdb->mls = db->mls;
|
||||
|
|
|
@ -49,11 +49,11 @@ int cil_binary_create(const struct cil_db *db, sepol_policydb_t **pdb);
|
|||
/**
|
||||
* Create a pre allocated binary policydb from the cil db.
|
||||
*
|
||||
* It is assumed that pdb has been allocated and initialzed so that fields such
|
||||
* as policy type and version are set appropriately. It is reccomended that
|
||||
* It is assumed that pdb has been allocated and initialized so that fields such
|
||||
* as policy type and version are set appropriately. It is recommended that
|
||||
* instead of calling this, one instead calls cil_binary_create, which will
|
||||
* properly allocate and initialize the pdb and then calls this function. This
|
||||
* funcion is used to maintain binary backwards compatability.
|
||||
* function is used to maintain binary backwards compatibility.
|
||||
*
|
||||
* @param[in] db The cil database.
|
||||
* @param[in] pdb The policy database.
|
||||
|
@ -126,7 +126,7 @@ int cil_typealias_to_policydb(policydb_t *pdb, struct cil_alias *cil_alias);
|
|||
|
||||
/**
|
||||
* Insert cil typepermissive structure into sepol policydb.
|
||||
* The function looks up the perviously inserted type and flips the bit
|
||||
* The function looks up the previously inserted type and flips the bit
|
||||
* in the permssive types bitmap that corresponds to that type's value.
|
||||
*
|
||||
* @param[in] pdb The policy database to insert the typepermissive into.
|
||||
|
|
|
@ -6125,7 +6125,7 @@ int __cil_build_ast_node_helper(struct cil_tree_node *parse_current, uint32_t *f
|
|||
rc = SEPOL_OK;
|
||||
goto exit;
|
||||
} else if (parse_current->data == NULL) {
|
||||
/* the only time parenthsis can immediately following parenthesis is if
|
||||
/* the only time parenthesis can immediately following parenthesis is if
|
||||
* the parent is the root node */
|
||||
if (parse_current->parent->parent == NULL) {
|
||||
rc = SEPOL_OK;
|
||||
|
@ -6544,7 +6544,7 @@ int __cil_build_ast_last_child_helper(struct cil_tree_node *parse_current, void
|
|||
// At this point we no longer have any need for parse_current or any of its
|
||||
// siblings; they have all been converted to the appropriate AST node. The
|
||||
// full parse tree will get deleted elsewhere, but in an attempt to
|
||||
// minimize memory useage (of which the parse tree uses alot), start
|
||||
// minimize memory usage (of which the parse tree uses a lot), start
|
||||
// deleting the parts we don't need now.
|
||||
cil_tree_children_destroy(parse_current->parent);
|
||||
|
||||
|
|
|
@ -103,7 +103,7 @@ static int __cil_fqn_qualify_blocks(__attribute__((unused)) hashtab_key_t k, has
|
|||
case CIL_SYM_IPADDRS:
|
||||
case CIL_SYM_NAMES:
|
||||
case CIL_SYM_PERMX:
|
||||
/* These do not show up in the kernal policy */
|
||||
/* These do not show up in the kernel policy */
|
||||
break;
|
||||
case CIL_SYM_POLICYCAPS:
|
||||
/* Valid policy capability names are defined in libsepol */
|
||||
|
|
|
@ -2309,7 +2309,7 @@ static int cil_post_db(struct cil_db *db)
|
|||
|
||||
rc = cil_tree_walk(db->ast->root, __cil_post_db_count_helper, NULL, NULL, db);
|
||||
if (rc != SEPOL_OK) {
|
||||
cil_log(CIL_INFO, "Failure during cil databse count helper\n");
|
||||
cil_log(CIL_INFO, "Failure during cil database count helper\n");
|
||||
goto exit;
|
||||
}
|
||||
|
||||
|
|
|
@ -1378,7 +1378,7 @@ static int insert_unordered(struct cil_list *merged, struct cil_list *unordered)
|
|||
|
||||
cil_list_for_each(item, unordered_list->list) {
|
||||
if (cil_list_contains(merged, item->data)) {
|
||||
/* item was declared in an ordered statement, which supercedes
|
||||
/* item was declared in an ordered statement, which supersedes
|
||||
* all unordered statements */
|
||||
if (item->flavor == CIL_CLASS) {
|
||||
cil_log(CIL_WARN, "Ignoring '%s' as it has already been declared in classorder.\n", ((struct cil_class*)(item->data))->datum.name);
|
||||
|
@ -3984,7 +3984,7 @@ int cil_resolve_ast(struct cil_db *db, struct cil_tree_node *current)
|
|||
if (changed && (pass > CIL_PASS_CALL1)) {
|
||||
/* Need to re-resolve because an optional was disabled that contained
|
||||
* one or more declarations. We only need to reset to the call1 pass
|
||||
* because things done in the preceeding passes aren't allowed in
|
||||
* because things done in the preceding passes aren't allowed in
|
||||
* optionals, and thus can't be disabled.
|
||||
* Note: set pass to CIL_PASS_CALL1 because the pass++ will increment
|
||||
* it to CIL_PASS_CALL2
|
||||
|
|
|
@ -47,7 +47,7 @@ typedef hashtab_val_t *hashtab_t;
|
|||
/*
|
||||
Creates a new hash table with the specified characteristics.
|
||||
|
||||
Returns NULL if insufficent space is available or
|
||||
Returns NULL if insufficient space is available or
|
||||
the new hash table otherwise.
|
||||
*/
|
||||
extern hashtab_t hashtab_create(unsigned int (*hash_value) (hashtab_t h,
|
||||
|
|
|
@ -60,7 +60,7 @@ extern int sepol_compute_av_reason(sepol_security_id_t ssid,
|
|||
/*
|
||||
* Same as above, but also returns the constraint expression calculations
|
||||
* whether allowed or denied in a buffer. This buffer is allocated by
|
||||
* this call and must be free'd by the caller using free(3). The contraint
|
||||
* this call and must be free'd by the caller using free(3). The constraint
|
||||
* buffer will contain any constraints in infix notation.
|
||||
* If the SHOW_GRANTED flag is set it will show granted and denied
|
||||
* constraints. The default is to show only denied constraints.
|
||||
|
|
|
@ -359,7 +359,7 @@ int cond_normalize_expr(policydb_t * p, cond_node_t * cn)
|
|||
ne = NULL;
|
||||
e = cn->expr;
|
||||
|
||||
/* becuase it's RPN look at last element */
|
||||
/* because it's RPN look at last element */
|
||||
while (e->next != NULL) {
|
||||
ne = e;
|
||||
e = e->next;
|
||||
|
|
|
@ -455,7 +455,7 @@ int ebitmap_read(ebitmap_t * e, void *fp)
|
|||
}
|
||||
if (count && l->startbit + MAPSIZE != e->highbit) {
|
||||
printf
|
||||
("security: ebitmap: hight bit %u has not the expected value %zu\n",
|
||||
("security: ebitmap: high bit %u has not the expected value %zu\n",
|
||||
e->highbit, l->startbit + MAPSIZE);
|
||||
goto bad;
|
||||
}
|
||||
|
|
|
@ -65,7 +65,7 @@ typedef struct link_state {
|
|||
char *dest_class_name;
|
||||
char dest_class_req; /* flag indicating the class was not declared */
|
||||
uint32_t symbol_num;
|
||||
/* used to report the name of the module if dependancy error occurs */
|
||||
/* used to report the name of the module if dependency error occurs */
|
||||
policydb_t **decl_to_mod;
|
||||
|
||||
/* error reporting fields */
|
||||
|
@ -2172,7 +2172,7 @@ static void print_missing_requirements(link_state_t * state,
|
|||
* decl. If the block has an else decl, enable.
|
||||
*
|
||||
* This will correctly handle all dependencies, including mutual and
|
||||
* cicular. The only downside is that it is slow.
|
||||
* circular. The only downside is that it is slow.
|
||||
*/
|
||||
static int enable_avrules(link_state_t * state, policydb_t * pol)
|
||||
{
|
||||
|
|
|
@ -1323,7 +1323,7 @@ static int cond_expr_to_cil(int indent, struct policydb *pdb, struct cond_expr *
|
|||
|
||||
// length = length of parameters +
|
||||
// length of operator +
|
||||
// 1 space preceeding each parameter +
|
||||
// 1 space preceding each parameter +
|
||||
// 2 parens around the whole expression
|
||||
// + null terminator
|
||||
len = strlen(val1) + strlen(val2) + strlen(op) + (num_params * 1) + 2 + 1;
|
||||
|
@ -1853,7 +1853,7 @@ static int constraint_expr_to_string(struct policydb *pdb, struct constraint_exp
|
|||
|
||||
// length = length of parameters +
|
||||
// length of operator +
|
||||
// 1 space preceeding each parameter +
|
||||
// 1 space preceding each parameter +
|
||||
// 2 parens around the whole expression
|
||||
// + null terminator
|
||||
len = strlen(val1) + strlen(val2) + strlen(op) + (num_params * 1) + 2 + 1;
|
||||
|
|
|
@ -346,7 +346,7 @@ class system
|
|||
}
|
||||
|
||||
#
|
||||
# Define the access vector interpretation for controling capabilies
|
||||
# Define the access vector interpretation for controlling capabilities
|
||||
#
|
||||
|
||||
class capability
|
||||
|
|
|
@ -341,7 +341,7 @@ class system
|
|||
}
|
||||
|
||||
#
|
||||
# Define the access vector interpretation for controling capabilies
|
||||
# Define the access vector interpretation for controlling capabilities
|
||||
#
|
||||
|
||||
class capability
|
||||
|
|
|
@ -346,7 +346,7 @@ class system
|
|||
}
|
||||
|
||||
#
|
||||
# Define the access vector interpretation for controling capabilies
|
||||
# Define the access vector interpretation for controlling capabilities
|
||||
#
|
||||
|
||||
class capability
|
||||
|
|
|
@ -346,7 +346,7 @@ class system
|
|||
}
|
||||
|
||||
#
|
||||
# Define the access vector interpretation for controling capabilies
|
||||
# Define the access vector interpretation for controlling capabilities
|
||||
#
|
||||
|
||||
class capability
|
||||
|
|
|
@ -346,7 +346,7 @@ class system
|
|||
}
|
||||
|
||||
#
|
||||
# Define the access vector interpretation for controling capabilies
|
||||
# Define the access vector interpretation for controlling capabilities
|
||||
#
|
||||
|
||||
class capability
|
||||
|
|
|
@ -346,7 +346,7 @@ class system
|
|||
}
|
||||
|
||||
#
|
||||
# Define the access vector interpretation for controling capabilies
|
||||
# Define the access vector interpretation for controlling capabilities
|
||||
#
|
||||
|
||||
class capability
|
||||
|
|
|
@ -346,7 +346,7 @@ class system
|
|||
}
|
||||
|
||||
#
|
||||
# Define the access vector interpretation for controling capabilies
|
||||
# Define the access vector interpretation for controlling capabilities
|
||||
#
|
||||
|
||||
class capability
|
||||
|
|
|
@ -346,7 +346,7 @@ class system
|
|||
}
|
||||
|
||||
#
|
||||
# Define the access vector interpretation for controling capabilies
|
||||
# Define the access vector interpretation for controlling capabilities
|
||||
#
|
||||
|
||||
class capability
|
||||
|
|
|
@ -346,7 +346,7 @@ class system
|
|||
}
|
||||
|
||||
#
|
||||
# Define the access vector interpretation for controling capabilies
|
||||
# Define the access vector interpretation for controlling capabilities
|
||||
#
|
||||
|
||||
class capability
|
||||
|
|
|
@ -346,7 +346,7 @@ class system
|
|||
}
|
||||
|
||||
#
|
||||
# Define the access vector interpretation for controling capabilies
|
||||
# Define the access vector interpretation for controlling capabilities
|
||||
#
|
||||
|
||||
class capability
|
||||
|
|
|
@ -126,7 +126,7 @@ int deps_test_cleanup(void)
|
|||
* symbols. It is capable of testing 2 scenarios - the dependencies are met
|
||||
* and the dependencies are not met.
|
||||
*
|
||||
* Paramaters:
|
||||
* Parameters:
|
||||
* req_met boolean indicating whether the base policy meets the
|
||||
* requirements for the modules global block.
|
||||
* b index of the base policy in the global bases_met array.
|
||||
|
@ -209,7 +209,7 @@ static void deps_modreq_global(void)
|
|||
* symbols. It is capable of testing 2 scenarios - the dependencies are met
|
||||
* and the dependencies are not met.
|
||||
*
|
||||
* Paramaters:
|
||||
* Parameters:
|
||||
* req_met boolean indicating whether the base policy meets the
|
||||
* requirements for the modules global block.
|
||||
* b index of the base policy in the global bases_met array.
|
||||
|
|
|
@ -97,7 +97,7 @@ int downgrade_add_tests(CU_pSuite suite)
|
|||
* Output: None
|
||||
*
|
||||
* Description:
|
||||
* Tests the backward compatability of MLS and Non-MLS binary policy versions.
|
||||
* Tests the backward compatibility of MLS and Non-MLS binary policy versions.
|
||||
*/
|
||||
void test_downgrade(void)
|
||||
{
|
||||
|
|
|
@ -65,7 +65,7 @@ int downgrade_add_tests(CU_pSuite suite);
|
|||
*
|
||||
* Output: None
|
||||
*
|
||||
* Description: Tests the backward compatability of MLS and Non-MLS binary
|
||||
* Description: Tests the backward compatibility of MLS and Non-MLS binary
|
||||
* policy versions.
|
||||
*/
|
||||
void test_downgrade(void);
|
||||
|
|
|
@ -30,7 +30,7 @@ extern policydb_t base_expanded2;
|
|||
|
||||
void test_expander_attr_mapping(void)
|
||||
{
|
||||
/* note that many cases are ommitted because they don't make sense
|
||||
/* note that many cases are omitted because they don't make sense
|
||||
(i.e. declaring in an optional and then using it in the base) or
|
||||
because declare in optional then require in a different optional
|
||||
logic still doesn't work */
|
||||
|
|
|
@ -93,7 +93,7 @@ void base_cond_tests(policydb_t * base)
|
|||
/* these tests look at booleans and conditionals in the base only
|
||||
* to ensure that they aren't altered or removed during the link process */
|
||||
|
||||
/* bool existance and state, global scope */
|
||||
/* bool existence and state, global scope */
|
||||
d = test_find_decl_by_sym(base, SYM_TYPES, "tag_g_b");
|
||||
decls[0] = d->decl_id;
|
||||
test_sym_presence(base, "g_b_bool_1", SYM_BOOLS, SCOPE_DECL, decls, 1);
|
||||
|
@ -103,7 +103,7 @@ void base_cond_tests(policydb_t * base)
|
|||
bools[0].expr_type = COND_BOOL;
|
||||
test_cond_expr_mapping(base, d, bools, 1);
|
||||
|
||||
/* bool existance and state, optional scope */
|
||||
/* bool existence and state, optional scope */
|
||||
d = test_find_decl_by_sym(base, SYM_TYPES, "tag_o1_b");
|
||||
decls[0] = d->decl_id;
|
||||
test_sym_presence(base, "o1_b_bool_1", SYM_BOOLS, SCOPE_DECL, decls, 1);
|
||||
|
@ -121,7 +121,7 @@ void module_cond_tests(policydb_t * base)
|
|||
unsigned int decls[1];
|
||||
test_cond_expr_t bools[3];
|
||||
|
||||
/* bool existance and state, module 1 global scope */
|
||||
/* bool existence and state, module 1 global scope */
|
||||
d = test_find_decl_by_sym(base, SYM_TYPES, "tag_g_m1");
|
||||
decls[0] = d->decl_id;
|
||||
test_sym_presence(base, "g_m1_bool_1", SYM_BOOLS, SCOPE_DECL, decls, 1);
|
||||
|
@ -131,7 +131,7 @@ void module_cond_tests(policydb_t * base)
|
|||
bools[0].expr_type = COND_BOOL;
|
||||
test_cond_expr_mapping(base, d, bools, 1);
|
||||
|
||||
/* bool existance and state, module 1 optional scope */
|
||||
/* bool existence and state, module 1 optional scope */
|
||||
d = test_find_decl_by_sym(base, SYM_TYPES, "tag_o1_m1");
|
||||
decls[0] = d->decl_id;
|
||||
test_sym_presence(base, "o1_m1_bool_1", SYM_BOOLS, SCOPE_DECL, decls, 1);
|
||||
|
@ -141,7 +141,7 @@ void module_cond_tests(policydb_t * base)
|
|||
bools[0].expr_type = COND_BOOL;
|
||||
test_cond_expr_mapping(base, d, bools, 1);
|
||||
|
||||
/* bool existance and state, module 2 global scope */
|
||||
/* bool existence and state, module 2 global scope */
|
||||
d = test_find_decl_by_sym(base, SYM_TYPES, "tag_g_m2");
|
||||
decls[0] = d->decl_id;
|
||||
test_sym_presence(base, "g_m2_bool_1", SYM_BOOLS, SCOPE_DECL, decls, 1);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# Multi-Level Security translation table for SELinux
|
||||
#
|
||||
# Uncomment the following to disable translation libary
|
||||
#
|
||||
# Uncomment the following to disable translation library
|
||||
# disable=1
|
||||
#
|
||||
# Objects can be labeled with one of 16 levels and be categorized with 0-1023
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# Multi-Level Security translation table for SELinux
|
||||
#
|
||||
# Uncomment the following to disable translation libary
|
||||
#
|
||||
# Uncomment the following to disable translation library
|
||||
# disable=1
|
||||
#
|
||||
# Objects can be labeled with one of 16 levels and be categorized with 0-1023
|
||||
|
@ -10,6 +10,6 @@
|
|||
# Users can modify this table to translate the MLS labels for different purpose.
|
||||
#
|
||||
|
||||
# Demonstrate Include by moving everthing to an include file
|
||||
# Demonstrate Include by moving everything to an include file
|
||||
#
|
||||
Include=/etc/selinux/mls/setrans.d/include-example
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# Multi-Level Security translation table for SELinux
|
||||
#
|
||||
# Uncomment the following to disable translation libary
|
||||
#
|
||||
# Uncomment the following to disable translation library
|
||||
# disable=1
|
||||
#
|
||||
# Objects can be labeled with one of 16 levels and be categorized with 0-1023
|
||||
|
|
|
@ -9,7 +9,7 @@ Prefix=RELEASABLE TO
|
|||
Prefix=RELEASEABLE TO
|
||||
Default=c200.c511
|
||||
|
||||
~c200.c511=EVERBODY
|
||||
~c200.c511=EVERYBODY
|
||||
|
||||
~c200,~c205,~c219,~c223,~c239,~c257,~c258,~c261,~c268,~c269,~c274,~c278,~c288,~c298,~c300,~c308,~c310,~c331,~c332,~c333,~c365,~c366,~c378,~c381,~c387,~c406,~c407,~c423,~c430=NATO
|
||||
|
||||
|
@ -748,4 +748,4 @@ Default=c200.c511
|
|||
~c200,~c444=ZI # Zimbabwe
|
||||
~c200,~c444=ZWE # Zimbabwe
|
||||
|
||||
#UNCLASSIFIED
|
||||
#UNCLASSIFIED
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# Multi-Level Security translation table for SELinux
|
||||
#
|
||||
# Uncomment the following to disable translation libary
|
||||
#
|
||||
# Uncomment the following to disable translation library
|
||||
# disable=1
|
||||
#
|
||||
# Objects can be labeled with one of 16 levels and be categorized with 0-1023
|
||||
|
@ -10,6 +10,6 @@
|
|||
# Users can modify this table to translate the MLS labels for different purpose.
|
||||
#
|
||||
|
||||
# Demonstrate Include by moving everthing to an include file
|
||||
# Demonstrate Include by moving everything to an include file
|
||||
#
|
||||
Include=/etc/selinux/mls/setrans.d/*.conf
|
||||
|
|
|
@ -211,7 +211,7 @@ static int add_mnemonic(const char *name, uint32_t color)
|
|||
|
||||
|
||||
/* Process line from color file.
|
||||
May modify the data pointed to by the buffer paremeter */
|
||||
May modify the data pointed to by the buffer parameter */
|
||||
static int process_color(char *buffer, int line) {
|
||||
char rule[10], pat[256], f[256], b[256];
|
||||
uint32_t i, fg, bg;
|
||||
|
|
|
@ -50,7 +50,7 @@ static __attribute__((__noreturn__)) void usage(int err)
|
|||
{
|
||||
fprintf(stderr, "Usage: %s [OPTIONS] [IN_FILE [OUT_FILE]]\n", progname);
|
||||
fprintf(stderr, "\n");
|
||||
fprintf(stderr, "Read an SELinux policy package (.pp) and output the equivilent CIL.\n");
|
||||
fprintf(stderr, "Read an SELinux policy package (.pp) and output the equivalent CIL.\n");
|
||||
fprintf(stderr, "If IN_FILE is not provided or is -, read SELinux policy package from\n");
|
||||
fprintf(stderr, "standard input. If OUT_FILE is not provided or is -, output CIL to\n");
|
||||
fprintf(stderr, "standard output.\n");
|
||||
|
|
|
@ -49,7 +49,7 @@ typedef hashtab_val_t *hashtab_t;
|
|||
/*
|
||||
Creates a new hash table with the specified characteristics.
|
||||
|
||||
Returns NULL if insufficent space is available or
|
||||
Returns NULL if insufficient space is available or
|
||||
the new hash table otherwise.
|
||||
*/
|
||||
extern hashtab_t hashtab_create(unsigned int (*hash_value) (hashtab_t h,
|
||||
|
|
|
@ -621,7 +621,7 @@ static inline int drop_capabilities(__attribute__ ((__unused__)) int full)
|
|||
#ifdef NAMESPACE_PRIV
|
||||
/**
|
||||
* This function will set the uid values to be that of caller's uid, and
|
||||
* will drop any privilages which maybe have been raised.
|
||||
* will drop any privilege which may have been raised.
|
||||
*/
|
||||
static int transition_to_caller_uid()
|
||||
{
|
||||
|
@ -718,7 +718,7 @@ static int relabel_tty(const char *ttyn, security_context_t new_context,
|
|||
fprintf(stderr, _("Error! Could not open %s.\n"), ttyn);
|
||||
return fd;
|
||||
}
|
||||
/* this craziness is to make sure we cann't block on open and deadlock */
|
||||
/* this craziness is to make sure we can't block on open and deadlock */
|
||||
rc = fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) & ~O_NONBLOCK);
|
||||
if (rc) {
|
||||
fprintf(stderr, _("Error! Could not clear O_NONBLOCK on %s\n"), ttyn);
|
||||
|
@ -1053,7 +1053,7 @@ int main(int argc, char *argv[])
|
|||
/*
|
||||
* Step 0: Setup
|
||||
*
|
||||
* Do some intial setup, including dropping capabilities, checking
|
||||
* Do some initial setup, including dropping capabilities, checking
|
||||
* if it makes sense to continue to run newrole, and setting up
|
||||
* a scrubbed environment.
|
||||
*/
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1631,7 +1631,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1657,7 +1657,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1881,7 +1881,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3730,7 +3730,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3956,7 +3956,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1682,7 +1682,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr "<b>পৰিবৰ্তন কৰিবলে স্থায়ী ভূমিকা বাছক:</b>"
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr "%s ডমেইনলে স্থানান্তৰ হোৱা ব্যৱহাৰকাৰী ভূমিকাসমূহ বাছক।"
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1710,7 +1710,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr "<b>%s লে পৰিবৰ্তন হোৱা ব্যৱহাৰকাৰী ভূমিকাসমূহ বাছক (_r):</b>"
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr "চিহ্নিত এপ্লিকেচন ডমেইনত ৰূপান্তৰযোগ্য ব্যৱহাৰকাৰীৰ ভূমিকা নিৰ্বাচন কৰক"
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1950,7 +1950,7 @@ msgid "You must enter a executable"
|
|||
msgstr "এক্সেকিউটেবল উল্লেখ কৰা আৱশ্যক"
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr "SELinux বিন্যাস কৰক"
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -4009,7 +4009,7 @@ msgstr "আপোনাৰ %s ৰ বাবে আপোনাৰ নীতি
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
"নাম কোনো খালি ঠাই নথকাকৈ আল্ফা নিউমাৰিক হব লাগিব। বিকল্প \"-n MODULENAME\" "
|
||||
|
@ -4249,7 +4249,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1622,7 +1622,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1648,7 +1648,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1872,7 +1872,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3721,7 +3721,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3947,7 +3947,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1624,7 +1624,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1650,7 +1650,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1874,7 +1874,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3723,7 +3723,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3949,7 +3949,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1677,7 +1677,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr "<b>Изберете съществуваща роля за промяна:</b>"
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1703,7 +1703,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1940,7 +1940,7 @@ msgid "You must enter a executable"
|
|||
msgstr "Трябва да въведете изпълним файл"
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr "Конфигуриране на "
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3826,7 +3826,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
"Името трябва да е от букви и цифри без интервали. Разгледайте ползването на "
|
||||
|
@ -4061,7 +4061,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1622,7 +1622,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1648,7 +1648,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1872,7 +1872,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3721,7 +3721,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3947,7 +3947,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1675,7 +1675,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr "<b>পরিবর্তনের উদ্দেশ্যে কোনো উপস্থিত ভূমিকা নির্বাচন করুন:</b>"
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr "%s ডোমেইনে স্থানান্তরের জন্য ব্যবহারকারী ভূমিকা নির্বাচন করুন।"
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1701,7 +1701,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr "<b>যে সমস্ত user_roles %s-এ রূপান্তরিত হবে সেগুলি নির্বাচন করুন:</b>"
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
"চিহ্নিত অ্যাপ্লিকেশন ডোমেইনের মধ্যে রূপান্তরযোগ্য ব্যবহারকারীর ভূমিকা নির্বাচন করুন"
|
||||
|
||||
|
@ -1943,7 +1943,7 @@ msgid "You must enter a executable"
|
|||
msgstr "এক্সেকিউটেবল উল্লেখ করা আবশ্যক"
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr "SELinux কনফিগার করুন"
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3828,7 +3828,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
"শূণ্যস্থান বিনা অক্ষর ও সংখ্যা বিশিষ্ট নাম হওয়া আবশ্যক। \"-n MODULENAME\" বিকল্পের "
|
||||
|
@ -4063,7 +4063,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1622,7 +1622,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1648,7 +1648,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1872,7 +1872,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3721,7 +3721,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3947,7 +3947,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1632,7 +1632,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1658,7 +1658,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1882,7 +1882,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3731,7 +3731,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3957,7 +3957,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1654,7 +1654,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1680,7 +1680,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1904,7 +1904,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3753,7 +3753,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3979,7 +3979,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1627,7 +1627,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1653,7 +1653,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1877,7 +1877,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3726,7 +3726,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3952,7 +3952,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1624,7 +1624,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1650,7 +1650,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1874,7 +1874,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3723,7 +3723,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3949,7 +3949,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1632,7 +1632,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1658,7 +1658,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1882,7 +1882,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3731,7 +3731,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3957,7 +3957,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1709,7 +1709,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr "<b>Wählen Sie eine vorhandene Rolle zum Bearbeiten:</b>"
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr "Wählen Sie die Benutzerrollen, die in die %s-Domain wechseln werden."
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1737,7 +1737,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr "<b>Wählen Sie die Benutzer_rollen, die nach %s wechseln werden:</b>"
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
"Wählen Sie die Benutzerrollen, die in diese Anwendungsdomains wechseln "
|
||||
"werden."
|
||||
|
@ -1986,7 +1986,7 @@ msgid "You must enter a executable"
|
|||
msgstr "Sie müssen eine ausführbare Datei angeben"
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr "SELinux konfigurieren"
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -4106,7 +4106,7 @@ msgstr "Sie müssen einen Namen für Ihr Richtlinienmodul für %s angeben."
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
"Name muss alphanumerisch ohne Leerzeichen sein. Verwenden Sie ggf. die "
|
||||
|
@ -4346,7 +4346,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1626,7 +1626,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1652,7 +1652,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1876,7 +1876,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3725,7 +3725,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3951,7 +3951,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1630,7 +1630,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1656,7 +1656,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1880,7 +1880,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3729,7 +3729,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3955,7 +3955,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1703,7 +1703,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr "<b>Elija la función existente a modificar:</b>"
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
"Elija los roles de usuario que harán la transición hacia el dominio %s."
|
||||
|
||||
|
@ -1732,7 +1732,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr "<b>Elija las funciones de usuario que harán la transición a %s:</b>"
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
"Elija las funciones de usuario que harán la transición a estos dominios de "
|
||||
"aplicaciones."
|
||||
|
@ -1976,7 +1976,7 @@ msgid "You must enter a executable"
|
|||
msgstr "Debe ingresar un ejecutable"
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr "Configurar SELinux"
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -4050,7 +4050,7 @@ msgstr "Debe introducir un nombre para su módulo de política para su %s."
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
"El nombre deber ser de tipo alfanumérico y sin espacios. Considere utilizar "
|
||||
|
@ -4288,7 +4288,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1626,7 +1626,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1652,7 +1652,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1876,7 +1876,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr "Konfiguratu SELinux"
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3725,7 +3725,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3953,7 +3953,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1623,7 +1623,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1649,7 +1649,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1873,7 +1873,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3722,7 +3722,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3948,7 +3948,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1638,7 +1638,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:928
|
||||
|
@ -1664,7 +1664,7 @@ msgid "<b>Select the user_roles that will transition to %s:</b>"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/polgen.glade:1056
|
||||
|
@ -1888,7 +1888,7 @@ msgid "You must enter a executable"
|
|||
msgstr ""
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr ""
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -3737,7 +3737,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
|
||||
|
@ -3964,7 +3964,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
|
@ -1712,7 +1712,7 @@ msgid "<b>Select existing role to modify:</b>"
|
|||
msgstr "<b>Sélectionner le rôle existant à modifier :</b>"
|
||||
|
||||
#: ../gui/polgen.glade:908
|
||||
msgid "Select the user roles that will transiton to the %s domain."
|
||||
msgid "Select the user roles that will transition to the %s domain."
|
||||
msgstr ""
|
||||
"Sélectionnez les rôles utilisateur qui transitionneront vers le domaine %s."
|
||||
|
||||
|
@ -1742,7 +1742,7 @@ msgstr ""
|
|||
"<b>Sélectionnez les rôle utilisateur qui transitionneront vers %s :</b>"
|
||||
|
||||
#: ../gui/polgen.glade:1019
|
||||
msgid "Select the user roles that will transiton to this applications domains."
|
||||
msgid "Select the user roles that will transition to this applications domains."
|
||||
msgstr ""
|
||||
"Sélectionnez les rôles utilisateur qui transitionneront verss ce domaine "
|
||||
"applicatif."
|
||||
|
@ -1993,7 +1993,7 @@ msgid "You must enter a executable"
|
|||
msgstr "Vous devez entrer un exécutable"
|
||||
|
||||
#: ../gui/polgengui.py:756 ../gui/system-config-selinux.py:180
|
||||
msgid "Configue SELinux"
|
||||
msgid "Configure SELinux"
|
||||
msgstr "Configurer SELinux"
|
||||
|
||||
#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2528
|
||||
|
@ -4147,7 +4147,7 @@ msgstr "Vous devez entrer un nom pour votre module de stratégie pour votre %s."
|
|||
|
||||
#: ../sepolicy/sepolicy/generate.py:333
|
||||
msgid ""
|
||||
"Name must be alpha numberic with no spaces. Consider using option \"-n "
|
||||
"Name must be alpha numeric with no spaces. Consider using option \"-n "
|
||||
"MODULENAME\""
|
||||
msgstr ""
|
||||
"Le nom doit être alphanumérique sans espaces. Pensez à utiliser l'option « -"
|
||||
|
@ -4386,7 +4386,7 @@ msgstr ""
|
|||
|
||||
#: ../sepolicy/sepolicy/sepolicy.glade:826
|
||||
msgid ""
|
||||
"Select Make Path Recursive iff you want to apply this label to all children "
|
||||
"Select Make Path Recursive if you want to apply this label to all children "
|
||||
"of the specified directory path. objects under the directory to have this "
|
||||
"label."
|
||||
msgstr ""
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue